home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-20 / pgdir.zip / PGDIR.H < prev   
C/C++ Source or Header  |  1991-02-21  |  414b  |  15 lines

  1. /* The SHORT_DIR structure is used to make a fixed length "directory
  2. ** entry for a file. The strings (title, source, etc) are truncated
  3. ** to fit the structure, if necessary.
  4. */
  5. struct SHORT_DIR{
  6.   unsigned long fnumber;
  7.   unsigned long fsize;
  8.   unsigned char title[40];
  9.   unsigned char source[20];
  10.   unsigned char dest[20];
  11.   unsigned char keywords[20];
  12.   time_t ultime;
  13.   unsigned int dlcount;
  14. };
  15.